home *** CD-ROM | disk | FTP | other *** search
- .MODEL medium
- .CODE
-
- public seonlog, seofflog, seonread, seoffread, seonwrite, seoffwrite,
- public seonpntr, seoffpntr, seonmem, seoffmem, seonfile,
- public seofffile, seondir, seoffdir, seonfa, seofffa, seoncl, seoffcl,
- public seontime, seofftime, seonclose, seoffclose
-
- seonlog proc
- mov ax,6101h
- int 21h
- ret
- seonlog endp
-
- seofflog proc
- mov ax,6102h
- int 21h
- ret
- seofflog endp
-
- seonread proc
- mov ax,6103h
- int 21h
- ret
- seonread endp
-
- seoffread proc
- mov ax,6104h
- int 21h
- ret
- seoffread endp
-
- seonwrite proc
- mov ax,6105h
- int 21h
- ret
- seonwrite endp
-
- seoffwrite proc
- mov ax,6106h
- int 21h
- ret
- seoffwrite endp
-
- seonpntr proc
- mov ax,6107h
- int 21h
- ret
- seonpntr endp
-
- seoffpntr proc
- mov ax,6108h
- int 21h
- ret
- seoffpntr endp
-
- seonmem proc
- mov ax,6109h
- int 21h
- ret
- seonmem endp
-
- seoffmem proc
- mov ax,610Ah
- int 21h
- ret
- seoffmem endp
-
- seoncl proc
- mov ax,610Bh
- int 21h
- ret
- seoncl endp
-
- seoffcl proc
- mov ax,610Ch
- int 21h
- ret
- seoffcl endp
-
- seonfile proc
- mov ax,610Dh
- int 21h
- ret
- seonfile endp
-
- seofffile proc
- mov ax,610Eh
- int 21h
- ret
- seofffile endp
-
- seonclose proc
- mov ax,610Fh
- int 21h
- ret
- seonclose endp
-
- seoffclose proc
- mov ax,6110h
- int 21h
- ret
- seoffclose endp
-
- seondir proc
- mov ax,6111h
- int 21h
- ret
- seondir endp
-
- seoffdir proc
- mov ax,6112h
- int 21h
- ret
- seoffdir endp
-
- seonfa proc
- mov ax,6113h
- int 21h
- ret
- seonfa endp
-
- seofffa proc
- mov ax,6114h
- int 21h
- ret
- seofffa endp
-
- seontime proc
- mov ax,6115h
- int 21h
- ret
- seontime endp
-
- seofftime proc
- mov ax,6116h
- int 21h
- ret
- seofftime endp
-
- END